home *** CD-ROM | disk | FTP | other *** search
/ Aminet 8 / Aminet 8 (1995)(GTI - Schatztruhe)[!][Oct 1995].iso / Aminet / dev / gcc / gcc270_src.lha / gcc-2.7.0-amiga / config / m68k / xm-atari.h < prev    next >
C/C++ Source or Header  |  1995-06-15  |  2KB  |  45 lines

  1. /* Definitions of host machine for GNU compiler.
  2.    Atari TT ASV version.
  3.    Copyright (C) 1994 Free Software Foundation, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 59 Temple Place - Suite 330,
  20. Boston, MA 02111-1307, USA.  */
  21.  
  22. #include "m68k/xm-m68kv.h"    /* Use the System V flavor of m68k host */
  23.  
  24. #define HAVE_VPRINTF            /* Host has vprintf() in library */
  25.  
  26. /* ASV does not define HZ, so we have to do it ourselves. */
  27.  
  28. #define HZ 128            /* System clock */
  29.  
  30. /* Define FULL_PROTOTYPES for protoize.c, to get <unistd.h> included.
  31.    We need this file for things like R_OK, not necessarily prototypes. */
  32.  
  33. #define FULL_PROTOTYPES
  34.  
  35. #if defined (__GNUC__) && __GNUC__ == 1
  36. #define alloca __builtin_alloca
  37. #endif
  38.  
  39. /* The m88k and mips ports make use of fancy_abort to give possibly helpful
  40.    abort information rather than just dumping core.  They do it in their
  41.    tm-* files.  It seems more logical that this is a characteristic of
  42.    the host machine and not the target machine, so we do it here. */
  43.  
  44. #define abort fancy_abort       /* give possibly helpful abort info */
  45.